Effective Java(10)

effective-java.jpg

文章摘要

Effective Java第10章 并发 学习笔记

并发

66 同步访问共享的可变数据

  • 程序不会终止,后台线程永远在循环。
    1
    2
    3
    4
    5
    6
    7
    public class StopThread {
    private static boolean stopRequested;

    public static void main(String[] args) throws InterruptedException {
    Thread
    }
    }

未完待续